home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 December / PCWorld_2006-12_cd.bin / domacnost a kancelar / extractnow / extractnow.exe / install_script.iss (.txt)
Encoding:
Inno Setup Script  |  2006-11-07  |  3.4 KB  |  71 lines

  1. ;InnoSetupVersion=5.1.7
  2. [Setup]
  3. AppName=ExtractNow
  4. AppVerName=ExtractNow
  5. AppId=ExtractNow
  6. AppPublisher=Nathan Moinvaziri
  7. AppPublisherURL=http://www.extractnow.com/
  8. AppSupportURL=http://www.extractnow.com/
  9. AppUpdatesURL=http://www.extractnow.com/
  10. DefaultDirName={pf}\ExtractNow
  11. DefaultGroupName=ExtractNow
  12. OutputBaseFilename=extractnow
  13. Compression=lzma
  14. PrivilegesRequired=none
  15. DisableProgramGroupPage=yes
  16. InfoBeforeFile=embedded\InfoBefore.txt
  17. WizardImageFile=embedded\WizardImage0.bmp
  18. WizardSmallImageFile=embedded\WizardSmallImage0.bmp
  19. [Files]
  20. Source: "{app}\changelog.txt"; DestDir: "{app}"; Flags: ignoreversion 
  21. Source: "{app}\complete.wav"; DestDir: "{app}"; Flags: ignoreversion 
  22. Source: "{app}\incomplete.wav"; DestDir: "{app}"; Flags: ignoreversion 
  23. Source: "{app}\extractmenu.dll"; DestDir: "{app}"; Flags: restartreplace sharedfile uninsrestartdelete ignoreversion 
  24. Source: "{app}\file.ico"; DestDir: "{app}"; Flags: ignoreversion 
  25. Source: "{app}\extractnow.exe"; DestDir: "{app}"; Flags: ignoreversion 
  26. Source: "{app}\wimadll.dll"; DestDir: "{app}"; Flags: ignoreversion 
  27. Source: "{app}\unlha32.dll"; DestDir: "{app}"; Flags: ignoreversion 
  28. Source: "{app}\unacev2.dll"; DestDir: "{app}"; Flags: ignoreversion 
  29. [INI]
  30. FileName: "{app}\website.url"; Section: "InternetShortcut"; Key: "URL"; String: "http://www.extractnow.com/"; 
  31. [Run]
  32. Filename: "{app}\extractnow.exe"; Parameters: "/registermenu"; Tasks: registermenu; Flags: shellexec nowait
  33. Filename: "{app}\extractnow.exe"; Description: "Launch ExtractNow"; Flags: shellexec postinstall skipifsilent nowait
  34. [UninstallRun]
  35. Filename: "{app}\extractnow.exe"; Parameters: "/uninstall"; 
  36. [Icons]
  37. Name: "{group}\ExtractNow"; Filename: "{app}\extractnow.exe"; 
  38. Name: "{group}\ExtractNow on the Web"; Filename: "{app}\website.url"; IconFilename: "{sys}\shell32.dll"; IconIndex: 13; 
  39. Name: "{group}\Uninstall ExtractNow"; Filename: "{uninstallexe}"; 
  40. Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\ExtractNow"; Filename: "{app}\extractnow.exe"; Tasks: quicklaunchicon; 
  41. [Tasks]
  42. Name: "quicklaunchicon"; Description: "Create an icon in the &Quick Launch bar"; GroupDescription: "Additional icons:"; 
  43. Name: "registermenu"; Description: "Register explorer shell &context menu"; GroupDescription: "Additional tasks:"; 
  44. [InstallDelete]
  45. Type: files; Name: "{group}"; 
  46. Type: files; Name: "{app}\website.url"; 
  47. Type: files; Name: "{app}\todo.txt"; 
  48. Type: files; Name: "{sendto}\EXTRAC~1.lnk"; 
  49. Type: files; Name: "{sendto}\EXTRAC~2.lnk"; 
  50. [UninstallDelete]
  51. Type: files; Name: "{app}\website.url"; 
  52. Type: files; Name: "{app}\debug.log"; 
  53. Type: files; Name: "{app}\details.log"; 
  54. Type: files; Name: "{app}\history.log"; 
  55. Type: files; Name: "{sendto}\EXTRAC~1.lnk"; 
  56. Type: files; Name: "{sendto}\EXTRAC~2.lnk"; 
  57. [CustomMessages]
  58. default.NameAndVersion=%1 version %2
  59. default.AdditionalIcons=Additional icons:
  60. default.CreateDesktopIcon=Create a &desktop icon
  61. default.CreateQuickLaunchIcon=Create a &Quick Launch icon
  62. default.ProgramOnTheWeb=%1 on the Web
  63. default.UninstallProgram=Uninstall %1
  64. default.LaunchProgram=Launch %1
  65. default.AssocFileExtension=&Associate %1 with the %2 file extension
  66. default.AssocingFileExtension=Associating %1 with the %2 file extension...
  67. [Languages]
  68. ; These files are stubs
  69. ; To achieve better results after recompilation, use the real language files
  70. Name: "default"; MessagesFile: "embedded\default.isl"; 
  71.